home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 013 / doshelp.arc / COPYTO-C.BAT < prev    next >
Encoding:
DOS Batch File  |  1985-04-27  |  845 b   |  31 lines

  1. echo off
  2. cls
  3. echo HELP TRANSFER TO DRIVE C
  4. echo .
  5. echo This utility copies HELP to a fixed disk on Drive C.  Place the
  6. echo original disk with the HELP program in Drive A.  Then press any
  7. echo key to continue.
  8. echo .
  9. echo You will need about 90,000 bytes of space on Drive C for HELP
  10. echo files NOT COUNTING SPACE FOR BASICA.  The batch file to invoke
  11. echo HELP will be in your root directory.
  12. echo .
  13. echo If you DO NOT want to continue with this transfer, hold down the
  14. echo CTRL (control) key and simultaneously press C.  Then answer with
  15. echo a Y when DOS asks if you want to terminate the batch job.
  16. echo .
  17. echo Otherwise, press any key to continue.
  18. echo .
  19. pause
  20. cd a:\help
  21. copy a:help.bat c:\ /v
  22. mkdir c:\help
  23. cd c:\help
  24. copy a:*.* c:\help/v
  25. cd a:\
  26. cd c:\
  27. cls
  28. echo on
  29. rem      * Done with Transfer of HELP *
  30.  
  31.